home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / msdos / lynx / source / doslynx / src / ttempna3.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-25  |  590 b   |  20 lines

  1. //    Copyright (c) 1994, University of Kansas, All Rights Reserved
  2. //
  3. //    Class:        TTempName
  4. //    Include File:    ttempnam.h
  5. //    Purpose:    Standardized way to create a temporary file name.
  6. //    Remarks/Portability/Dependencies/Restrictions:
  7. //    Revision History:
  8. //        02-15-94    created
  9. #include"ttempnam.h"
  10.  
  11. const char *TTempName::getName() const    {
  12. //    Purpose:    Return a pointer to the temporary file name.
  13. //    Arguments:    void
  14. //    Return Value:    const char *    The file name.
  15. //    Remarks/Portability/Dependencies/Restrictions:
  16. //    Revision History:
  17. //        02-15-94    created
  18.  
  19.     return(cp_TempName);
  20. }